@font-face {
  font-family: 'HealTheWorld';
  src: url(images/HealTheWorld.woff) format('woff');
}

/*General CSS*/
body{
    color: #d6d6d6;
    font-family: 'HealTheWorld';
    background-color:#3D1C2E;
}
footer {
    margin:auto;
    text-align: center;
    position: fixed;
    bottom:0%;
}
a {
    color: #d6d6d6;
    font-family: 'HealTheWorld';
    text-decoration: none;
}

h2{
    position: fixed;
    top: 5%;
    right:45%;
    z-index:-1;
    margin-left: 60px;
    font-size:50px;
  text-decoration-line: underline;
  text-decoration-color: #591f3f;
}

#homeTitle{
    padding: 10px 10px 10px 10px;
    margin-top: 20%;
    margin-left: 60px;
    font-size:50px;
    text-shadow: 0px 0px 10px #7f03fc;
}
.homeButton{
    position: fixed;
    bottom: 50%;
    right: 50%;
    border-radius:12px;
    background-color:transparent;
    border-color: transparent;
    transition-duration: 0.4s;
    font-size:25px;
    padding: 14px, 40px;
    animation: fix 2s forwards;
}


@keyframes fix{
  0%{
    opacity: 0;
  }
  75%{
    opacity: 0;
  } 
  100%{
    opacity: 1;
  } 
}

.homeButton:hover{
    box-shadow: 0px 0px 15px #faf0ff;
}
video{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media(min-aspect-ratio: 16/9){
    video{
        width: 100%;
        height: auto;
    }
}

/*Texts fly up & Video fades away*/

#video{
  animation: fadeIn 1s ease-in forwards 1s;
  z-index: -1;
}

@keyframes fadeIn{
  0%{
    opacity: 1;
  }
  25%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

#text{
  animation: moveUp 1s ease-in forwards 1s;
}

@keyframes moveUp{
  0%{
    text-shadow: 0px 0px 10px #7f03fc;
    transform: translateY(0%);
    opacity: 1;
  }
  99%{
    transform: translateY(-500%);
    opacity: .5;
  }
  100%{
    opacity: 0;
  }
}

#bottomRight{
  position: fixed;
  bottom: 0;
  right: 0;
  width:20%;
  height:auto;
  z-index:-1;
}

#topLeft{
  position: fixed;
  top: 0;
  left: 0;
  z-index:-1;
  height:auto;
}

/*Project CSS*/
#schoolSubTitles{
    position: absolute;
    font-size: 35px;
    top:40%;
    color:white;
    left: 50px;
}
#projectSubTitles{
    position: absolute;
    font-size: 35px;
    color:white;
    top:40%;
    right:50px;    
}
.buttonText{
    color:white;
}
.schoolContainer{
    position: absolute;
    top: 55%;
    left: 100px;
}
.schoolButton{
    border-radius:12px;
    background-color: transparent;
    color: black;
    border: 2px solid #7f03fc;
    transition-duration: 0.4s;
    font-size:20px;
    padding: 14px, 40px;
}
.schoolButton:hover{
    border: 2px solid #4248f5;
    box-shadow: 0 5px 15px #7f84fa;
}
.projectContainer{
    position: absolute;
    top: 55%;
    right: 100px;
}
.projectButton{
    border-radius:12px;
    background-color: transparent;
    color: white;
    border: 2px solid #7f03fc;
    transition-duration: 0.4s;
    font-size:20px;
    padding: 14px, 40px;
}
.projectButton:hover{
    border: 2px solid #4248f5;
    box-shadow: 0 5px 15px #7f84fa;
}
